Skip to main content

Get Loan Request Details

GET /api/v1/loans/requests/{requestId}

Description

Retrieve details of a loan request by requestId.

Path Parameters

NameTypeDescription
requestIdstringThe unique identifier of the loan request (path)

Example

GET /api/v1/loans/requests/12345

Response Code: 200 - OK

Description

Successful retrieval of loan request details.

Example Response

{
"requestId": "12345",
"amount": 10000,
"status": "approved",
"user": {
"userId": "usr123",
"name": "John Doe",
"email": "john.doe@example.com"
}
}

🔑 Authentication bearer

ParamValueType
token{{accessToken}}string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /api/v1/loans/requests/{requestId} \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!